The first to sixth level HTML parts show six ways of section headings. <h1> is the top part level and <h6> is at the bottom. By default, all headings make a big block in the design. They start on a new line and use up all space they can within their parent block.
HTML Example
<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset ="UTF-8"> <!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<linkrel="stylesheet" href="style.css">
</head>
<body> <!--Write your content here levoriclearn top degree online and program-->
<h1>levoriclearn</h1>
<h2>levoriclearn</h2>
<h3>levoriclearn</h3>
<h4>levoriclearn</h4>
<h5>levoriclearn</h5>
<h6>levoriclearn</h6> <!--Write your content here levoriclearn top degree online and program-->
</body>
</html>